Skip to content

NET_SDK_SNMP_SECURITY_LEVEL

Enum Definition

1
2
3
4
5
6
enum NET_SDK_SNMP_SECURITY_LEVEL
{
    NET_SDK_SNMP_SEC_NOAUTH_NOPRIV = 0,
    NET_SDK_SNMP_SEC_AUTH_NOPRIV,
    NET_SDK_SNMP_SEC_AUTH_PRIV,
};
1
2
3
4
5
6
public enum NET_SDK_SNMP_SECURITY_LEVEL
{
    NET_SDK_SNMP_SEC_NOAUTH_NOPRIV = 0,
    NET_SDK_SNMP_SEC_AUTH_NOPRIV,
    NET_SDK_SNMP_SEC_AUTH_PRIV
}

Function Description

SNMP security level

Member Description

Enum name Value Remark
NET_SDK_SNMP_SEC_NOAUTH_NOPRIV 0 No authentication, no encryption
NET_SDK_SNMP_SEC_AUTH_NOPRIV 1 Authentication without encryption
NET_SDK_SNMP_SEC_AUTH_PRIV 2 Authenticated encryption
Error Code